home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1999 #2 / Amiga Plus CD - 1999 - No. 2.iso / System-Boost / Emulatoren / anes / ANES.Install < prev    next >
Text File  |  1998-11-08  |  1KB  |  63 lines

  1. ; ANES Install-script 0.93
  2.  
  3.  
  4.     (message "This script will install A/NES on your HD\n>-----------------------------<\nA/NES was created by\nMorgan Johansson\n(morgan.johansson@mbox301.swipnet.se)\n&\nFredrik Schultz\n(fredrik.schultz@swipnet.se)")
  5.  
  6.     (complete 0)
  7.  
  8.  
  9. ;MAKES THE "A/NES" DIRECTORY
  10.  
  11.     (set dest_dir
  12.       (tackon (askdir
  13.                 (prompt "Where do you want to install ANES?\n"
  14.                         "A drawer called ANES will be created.")
  15.                 (help @askdir-help)
  16.                 (default "ram:")
  17.                 (disk)
  18.               )
  19.               "ANES"
  20.       )
  21.     )
  22.  
  23.     (set @default-dest dest_dir)
  24.     (makedir dest_dir)
  25.  
  26.  
  27.  
  28. ; COPIES THE A/NES EXECUTABLE & GUIDE TO THE DESTINATION DIRETORY + ICONS
  29.  
  30.     (copyfiles
  31.       (source "ANES")
  32.       (dest (dest_dir))
  33.       (infos)
  34.     )
  35.  
  36.     (copyfiles
  37.       (source "ANES.guide")
  38.       (dest (dest_dir))
  39.       (infos)
  40.     )
  41.  
  42.     (complete 50)
  43.  
  44. ; COPY THE DRAWER ICON
  45.     (copyfiles
  46.       (source "/ANES.info")
  47.       (dest (tackon dest_dir "/")))
  48.      
  49.  
  50. ; ASKS WHERE TO INSTALL THE FONT
  51.  
  52. (copyfiles
  53.     (prompt "I will have to install NINTENDO fonts\nRequired to get ANES running\nWhere should I put them?")
  54.     (help @copyfiles-help)
  55.     (source "fonts/")
  56.     (dest "fonts:")
  57.     (all)
  58.     (confirm)
  59. )
  60.  
  61.     (complete 100)
  62.     (exit)
  63.